home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970626-19970929 / 000330_news@newsmaster….columbia.edu _Wed Sep 10 10:33:06 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA20077
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 10 Sep 1997 10:33:06 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id KAA19560
  7.     for kermit.misc@watsun; Wed, 10 Sep 1997 10:33:05 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: Telnet over PPP problems?
  12. Date: 10 Sep 1997 14:33:02 GMT
  13. Organization: Columbia University
  14. Lines: 61
  15. Message-ID: <5v6b2u$agu$1@apakabar.cc.columbia.edu>
  16. References: <EG7rBo.KzA@world.std.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7652
  19.  
  20. In article <EG7rBo.KzA@world.std.com>,
  21. William Smith <wpns@world.std.com> wrote:
  22. : Anyone else ever have problems getting K95 to start a Telnet session
  23. : over a PPP link?  I can Telnet from my work using K95 to my ISP
  24. : without any problems (except when the Internet is slow), but I
  25. : occasionally have trouble getting a session to start over a PPP link.
  26. It should make no difference, other than speed, what is sitting below
  27. IP in your TCP/IP stack: Ethernet, ISDN, PPP, SLIP, or paper cups and
  28. wet string.  Except of course that whatever it is must be set up correctly,
  29. and must itself work correctly.
  30.  
  31. But normally, it all should "just work".  However, some cautions do apply 
  32. to modem connections (e.g. for SLIP or PPP).  For example, they can become
  33. awfully slow for various reasons -- V.34 modems dropping down to lower
  34. modulations to adapt to link quality; error-correcting modems doing lots of
  35. retransmissions due to line noise.  And of course it is absolutely vital
  36. that you have RTS/CTS flow control enabled between PPP and the modem, and
  37. also that your PC contain a buffered UART (16550A), since unbuffered UARTs
  38. (8650, 16450, etc) are certain to lose data, even when RTS/CTS is in effect.
  39. However, from your description I don't think any of these necessarily bears
  40. upon your situation.
  41.  
  42. : I'm using Win95 OSR2 and establishing a dialup connection to my ISP,
  43. : and WWWeb browsing works fine.  Sometimes when I start a "telnet
  44. : world.std.com" session it takes a long time to get the login
  45. : banner/prompt, and occasionally it never shows up.  Hitting ^]a gets
  46. : no response, though if the banner/prompt is merely delayed i'll get a
  47. : couple of [Yes] responses just before it shows.
  48. The "[Yes]" message comes from the distant Telnet server.  This means that
  49. Kermit 95 has successfully connected to the Telnet server on world.std.com,
  50. and so it has done its job.  If the distant Telnet server is not giving you
  51. a login prompt right away, that's because the underlying service is slow --
  52. e.g. too busy, too many users logged in, etc -- it's taking a long time for
  53. the login process (a separate program that is started by the Telnet server)
  54. to load and start, and this has nothing to do with Kermit.  If the "[Yes]"
  55. messages show up immediately when you enter ^]a, this also means that the
  56. problem has nothing to do with the network connection itself, since the "Are
  57. You There?" message and its reply are going back and forth without delay or
  58. obstruction.
  59.  
  60. : I called my ISP and they brought K95 into question as a Telnet client,
  61. : I thought I'd check to see if this rings any bells with the rest of
  62. : the K95 users before I go haring off to try to find a better client...
  63. :
  64. It has nothing to do with Kermit 95.  To prove this to yourself, crank up
  65. Microsoft Telnet or any other client and see whether the same problem occurs
  66. under the same conditions (for a fair test, run them side by side in
  67. separate windows).
  68.  
  69. By the way, if you want to watch what goes on between Kermit 95 and the
  70. remote Telnet server, do this:
  71.  
  72.   K-95> set terminal debug on
  73.   K-95> telnet world.std.com
  74.  
  75. After you get the login prompt (if you ever do), use Alt-d to turn off
  76. debugging.
  77.  
  78. - Frank